1bashThis demonstrates using sed to find and replace patterns in a string using regular expressions.echo "abc123def456" | sed -E 's/[a-z]*/First letters ==> & <== /'external toolssedregex substitution (regular expression substitution)